home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter9 / brothers / lilbrother.class (.txt) < prev    next >
Encoding:
Java Class File  |  1995-12-31  |  403 b   |  12 lines

  1. package brothers;
  2.  
  3. class lilbrother extends Dad {
  4.    public lilbrother() {
  5.       super.fishing_boat = true;
  6.       super.golf_clubs = true;
  7.       super.familycar = true;
  8.       super.lawnmower = true;
  9.       super.pubprot = true;
  10.    }
  11. }
  12.